home *** CD-ROM | disk | FTP | other *** search
/ Delphi Magazine Collection 2001 / Delphi Magazine Collection 20001 (2001).iso / DISKS / ISSUE22 / CLINIC / SplitterSolutionMainForm.pas < prev   
Encoding:
Pascal/Delphi Source File  |  1997-04-06  |  559 b   |  35 lines

  1. unit SplitterSolutionMainForm;
  2.  
  3. interface
  4.  
  5. uses
  6.   Windows, Messages, SysUtils, Classes, Graphics, Controls, Forms, Dialogs,
  7.   StdCtrls, ExtCtrls;
  8.  
  9. type
  10.   TForm1 = class(TForm)
  11.     Panel1: TPanel;
  12.     Panel2: TPanel;
  13.     Panel3: TPanel;
  14.     Memo1: TMemo;
  15.     Splitter1: TSplitter;
  16.     Memo2: TMemo;
  17.     Splitter2: TSplitter;
  18.     Memo3: TMemo;
  19.     Splitter3: TSplitter;
  20.     Memo4: TMemo;
  21.   private
  22.     { Private declarations }
  23.   public
  24.     { Public declarations }
  25.   end;
  26.  
  27. var
  28.   Form1: TForm1;
  29.  
  30. implementation
  31.  
  32. {$R *.DFM}
  33.  
  34. end.
  35.